home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 September / CHIP NET Rehberi Eylül 1998.iso / ftp / iftp21 / EXAMPLES.ZIP / EXAM10.FTP < prev    next >
Text File  |  1997-11-26  |  531b  |  21 lines

  1. //---------------------------------------------------------------------
  2. // exam10.ftp
  3. // iFTP example script, passing parameters to scripts
  4. // This script will echo out the parameters passed to the script
  5. // 9 maximum Paramstrs can be passed.
  6. //
  7. // Call this script like so:  iftp /run exam10 opt1 opt2 opt3
  8. //
  9. //---------------------------------------------------------------------
  10.  
  11.   Echo 1 = %1
  12.   Echo 2 = %2
  13.   Echo 3 = %3
  14.   Echo 4 = %4
  15.   Echo 5 = %5
  16.   Echo 6 = %6
  17.   Echo 7 = %7
  18.   Echo 8 = %8
  19.   Echo 9 = %9
  20.  
  21.